Favicon

You are here: Home > API Reference > Windows > Windows Applications > Get winApplication by Id or Slug

Get winApplication by Id or Slug

Get winApplication by Id or Slug

GET
/v1/organizations/:organizationId/mdm/windows/enterprise/applications/:winApplicationId
Copy to clipboard

Get winApplication by Id or Slug

Get winApplication by Id or Slug

Request

Add parameter in header authorization
Example: Authorization: Bearer <token>
organizationId string
required
Entity Id or Slug
Match pattern: ^(([a-fA-F0-9]{24})|([a-zA-Z0-9\\-]{3,}))$
winApplicationId string
required
Entity Id
Match pattern: ^[a-fA-F0-9]{24}$

Responses

200 Response application/json
status boolean optional
data object optional
id string optional
Entity Id
Match pattern: ^[a-fA-F0-9]{24}$
organizationId string optional
Entity Id
Match pattern: ^[a-fA-F0-9]{24}$
winEnterpriseId string optional
Entity Id
Match pattern: ^[a-fA-F0-9]{24}$
type string optional
store build asset lastBuild lastGitBranchBuild lastGitTagBuild lastTagBuild
config object optional
winStoreId string optional
≤ 256 characters
buildId string optional
Entity Id
Match pattern: ^[a-fA-F0-9]{24}$
mdmAssetId string optional
Entity Id
Match pattern: ^[a-fA-F0-9]{24}$
applicationId string optional
Entity Id
Match pattern: ^[a-fA-F0-9]{24}$
filter string optional
≤ 256 characters
info object optional
origin string optional
library
version integer optional
≥ 0
updatedAt string optional
Format: date-time
createdAt string optional
Format: date-time
{
    "status": true,
    "data": {
        "id": "string",
        "organizationId": "string",
        "winEnterpriseId": "string",
        "type": "store",
        "config": {
            "winStoreId": "string",
            "buildId": "string",
            "mdmAssetId": "string",
            "applicationId": "string",
            "filter": "string"
        },
        "info": {},
        "origin": "library",
        "version": 0,
        "updatedAt": "2024-01-01T00: 00:00Z",
        "createdAt": "2024-01-01T00: 00:00Z"
    }
}
401 Response application/json
status boolean optional
false
error object optional
code number optional
4004
message string optional
Invalid Token
{
    "status": false,
    "error": {
        "code": 4002,
        "message": "No auth token"
    }
}
404 Response application/json
status boolean optional
false
error object optional
code number optional
3001
message string optional
Entity not found
{
    "status": false,
    "error": {
        "code": 3001,
        "message": "Entity not found"
    }
}